home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / Demos / Bombardier_PC / BSCRIPTS.CST / 00025_Script_3 states mouse changes < prev    next >
Text File  |  1999-04-25  |  1KB  |  39 lines

  1. -- ⌐ 1998 @radical.media, inc. & Concurrent New Media Group, L.L.C.
  2. -- Developed for Bombardier, Inc.
  3. --
  4. -- All programming developed by: 
  5. -- Robert Fabricant, Valerie Valoueva, Ossi Shaked, 
  6. -- Henry Sauvageot, Chris Howell & Chris Girand
  7. --
  8. -- Use of this code by parties other than @radical.media, inc. or their
  9. --agents 
  10. -- without the express written consent of @radical.media, inc. AND Concurrent 
  11. -- New Media Group, L.L.C. is strictly prohibited.
  12. ------------------------------------------------------
  13. -------*This script is not used in this version of the movie*----------
  14.  
  15. property Rimage,Dimage,image,sprt
  16.  
  17. on getPropertyDescriptionList
  18.   set description=[:]
  19.   
  20.   addProp description,#sprt,[#default:"",#format:#integer, ¼
  21.   #comment:"The sprite number "]
  22.   
  23.   return description
  24. end
  25.  
  26. on getbehaviorDescription
  27.   return "changes the image on rollover"
  28. end
  29.  
  30. on mouseenter me
  31.   set the castnum of sprite sprt to the castnum of sprite sprt +1
  32.   updatestage
  33. end
  34. on mouseleave me
  35.   set the castnum of sprite sprt to the castnum of sprite sprt -1
  36.   updatestage
  37. end
  38.  
  39.